home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / src / fchmod.c < prev    next >
C/C++ Source or Header  |  1996-01-04  |  235b  |  13 lines

  1. #include "amiga.h"
  2. #include <amiga/ioctl.h>
  3.  
  4. int ioctl(int fd, int request, void *data);
  5.  
  6. int fchmod(int fd, int mode)
  7. {
  8.     long amode = _make_protection(mode);
  9.  
  10.     __chkabort();
  11.     return ioctl(fd, _AMIGA_SETPROTECTION, &amode);
  12. }
  13.